home *** CD-ROM | disk | FTP | other *** search
/ InterCD 2001 November / november_2001.iso / Browsers / Netscape 6.1 / browser.xpi / bin / chrome / comm.jar / content / editor / EdInsertChars.xul < prev    next >
Encoding:
Extensible Markup Language  |  2001-04-05  |  3.4 KB  |  73 lines

  1. <?xml version="1.0"?>
  2. <!--
  3.    - The contents of this file are subject to the Netscape Public
  4.    - License Version 1.1 (the "License"); you may not use this file
  5.    - except in compliance with the License. You may obtain a copy of
  6.    - the License at http://www.mozilla.org/NPL/
  7.    -  
  8.    - Software distributed under the License is distributed on an "AS
  9.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.    - implied. See the License for the specific language governing
  11.    - rights and limitations under the License.
  12.    -  
  13.    - The Original Code is Mozilla Communicator client code, released
  14.    - March 31, 1998.
  15.    - 
  16.    - The Initial Developer of the Original Code is Netscape
  17.    - Communications Corporation. Portions created by Netscape are
  18.    - Copyright (C) 1998-1999 Netscape Communications Corporation. All
  19.    - Rights Reserved.
  20.    - 
  21.    - Contributor(s): 
  22.   -->
  23.  
  24. <?xml-stylesheet href="chrome://editor/skin/" type="text/css"?>
  25. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  26.  
  27. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?> 
  28. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  29. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  30.  
  31. <!DOCTYPE window SYSTEM "chrome://editor/locale/EditorInsertChars.dtd">
  32. <window class="dialog" title="&windowTitle.label;"
  33.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  34.     xmlns:html="http://www.w3.org/1999/xhtml"
  35.     onload = "Startup()"
  36.     orient="vertical">
  37.  
  38.   <!-- Methods common to all editor dialogs -->
  39.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  40.   <script type="application/x-javascript" src="chrome://editor/content/EdInsertChars.js"/>
  41.   <script type="application/x-javascript" src="chrome://global/content/dialogOverlay.js" />
  42.  
  43.   <spring id="location" offsetY="50" persist="offsetX offsetY"/>
  44.   <keyset id="dialogKeys"/>
  45.   <broadcaster id="args" value=""/>
  46.  
  47.   <titledbox orient="vertical"><label value="&category.label;"/>
  48.     <radiogroup id="CatGrp" orient="vertical" persist="category letter_index char_index">
  49.       <radio group="CatGrp" id="AccentUpper" label="&accentUpper.label;"   oncommand="ChangeCategory(this.id)"/>
  50.       <radio group="CatGrp" id="AccentLower" label="&accentLower.label;"   oncommand="ChangeCategory(this.id)"/>
  51.       <radio group="CatGrp" id="Upper"       label="&otherUpper.label;"    oncommand="ChangeCategory(this.id)"/>
  52.       <radio group="CatGrp" id="Lower"       label="&otherLower.label;"    oncommand="ChangeCategory(this.id)"/>
  53.       <radio group="CatGrp" id="Symbol"      label="&commonSymbols.label;" oncommand="ChangeCategory(this.id)"/>
  54.     </radiogroup> 
  55.     <spring class="spacer"/>
  56.   </titledbox>
  57.   <box>
  58.     <box orient="vertical" flex="1">
  59.       <!-- value is set in JS from editor.properties strings -->
  60.       <text class="label" id="LatinL_Label" value="&letter.label;"/>
  61.       <menulist class="larger" flex="1" id="LatinL" oncommand="SelectLatinLetter()"/>
  62.     </box>
  63.     <box orient="vertical" flex="1">
  64.       <text class="label" id="LatinM_Label" value="&character.label;"/>
  65.       <menulist class="larger" flex="1" id="LatinM" oncommand="SelectLatinModifier()"/>
  66.     </box>
  67.   </box>
  68.  
  69.   <separator class="groove"/>
  70.   <!-- from global dialogOverlay -->
  71.   <box id="okCancelButtons"/>
  72. </window>
  73.